Set the default value of the :show-not-found property to TRUE, as every
authorEmmanuele Bassi <ebassi@gnome.org>
Tue, 12 Feb 2008 16:38:00 +0000 (16:38 +0000)
committerEmmanuele Bassi <ebassi@src.gnome.org>
Tue, 12 Feb 2008 16:38:00 +0000 (16:38 +0000)
2008-02-12  Emmanuele Bassi  <ebassi@gnome.org>

* gtk/gtkrecentchooser.c:
(gtk_recent_chooser_class_init): Set the default value of the
:show-not-found property to TRUE, as every implementation sets
it to TRUE already.

* gtk/gtkrecentchooserdefault.c:
(_gtk_recent_chooser_default_init): Sync show_tips to the
default value of the :show-tips property.

svn path=/trunk/; revision=19535

ChangeLog
gtk/gtkrecentchooser.c
gtk/gtkrecentchooserdefault.c

index 2880c7ac555e621059ffa36b969a724f638ac14a..26289e1ee23361b07f405adeb5e292bf1e9bc7b9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2008-02-12  Emmanuele Bassi  <ebassi@gnome.org>
+
+       * gtk/gtkrecentchooser.c:
+       (gtk_recent_chooser_class_init): Set the default value of the
+       :show-not-found property to TRUE, as every implementation sets
+       it to TRUE already.
+
+       * gtk/gtkrecentchooserdefault.c:
+       (_gtk_recent_chooser_default_init): Sync show_tips to the
+       default value of the :show-tips property.
+
 2008-02-12  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkclipboard-quartz.c:
index a3a5e9acb4798cd723fef880b978e04c176e1996..31157b98d755e4f93a338ca139427dcd46bc4904 100644 (file)
@@ -177,7 +177,7 @@ gtk_recent_chooser_class_init (gpointer g_iface)
                                       g_param_spec_boolean ("show-not-found",
                                                             P_("Show Not Found"),
                                                             P_("Whether the items pointing to unavailable resources should be displayed"),
-                                                            FALSE,
+                                                            TRUE,
                                                             GTK_PARAM_READWRITE));
   /**
    * GtkRecentChooser:select-multiple:
index 562924559744e613d0a9d4967c758050a382e1fa..2eafcde2efb6f65bdf974cdb8e3bd6aa0f5f07e5 100644 (file)
@@ -345,7 +345,7 @@ _gtk_recent_chooser_default_init (GtkRecentChooserDefault *impl)
   impl->show_icons = TRUE;
   impl->show_private = FALSE;
   impl->show_not_found = TRUE;
-  impl->show_tips = TRUE;
+  impl->show_tips = FALSE;
   impl->select_multiple = FALSE;
   impl->local_only = TRUE;